home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_1.3 / Includes1.3 / include.h / libraries / romboot_base.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-07-15  |  867 b   |  50 lines

  1. #ifndef LIBRARIES_ROMBOOT_BASE_H
  2. #define LIBRARIES_ROMBOOT_BASE_H
  3. /*
  4. **    $Filename: libraries/romboot_base.h $
  5. **    $Release: 1.3 $
  6. **
  7. **    
  8. **
  9. **    (C) Copyright 1987,1988 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16. #ifndef EXEC_NODES_H
  17. #include <exec/nodes.h>
  18. #endif
  19. #ifndef EXEC_LISTS_H
  20. #include <exec/lists.h>
  21. #endif
  22. #ifndef EXEC_LIBRARIES_H
  23. #include <exec/libraries.h>
  24. #endif
  25. #ifndef EXEC_EXECBASE_H
  26. #include <exec/execbase.h>
  27. #endif
  28. #ifndef EXEC_EXECNAME_H
  29. #include <exec/execname.h>
  30. #endif
  31.  
  32. struct RomBootBase
  33. {
  34.     struct Library  LibNode;
  35.     struct ExecBase *ExecBase;
  36.     struct List        BootList;
  37.     ULONG            Reserved[4];    /* for future expansion */
  38. };
  39.  
  40. struct BootNode
  41. {
  42.     struct Node bn_Node;
  43.     UWORD    bn_Flags;
  44.     CPTR    bn_DeviceNode;
  45. };
  46.  
  47. #define ROMBOOT_NAME "romboot.library"
  48.  
  49. #endif    /* LIBRARIES_ROMBOOT_BASE_H */
  50.